From 49e566a9aaec934a8a7a530826ded0c033044799 Mon Sep 17 00:00:00 2001 From: "smh22@firebug.cl.cam.ac.uk" Date: Tue, 22 Nov 2005 18:21:22 +0100 Subject: [PATCH] Tidy up debugging output. Signed-off-by: Steven Hand --- tools/libxc/xc_linux_save.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/tools/libxc/xc_linux_save.c b/tools/libxc/xc_linux_save.c index 6683a5ee61..ade255f913 100644 --- a/tools/libxc/xc_linux_save.c +++ b/tools/libxc/xc_linux_save.c @@ -473,14 +473,9 @@ void canonicalize_pagetable(unsigned long type, unsigned long pfn, if (!MFN_IS_IN_PSEUDOPHYS_MAP(mfn)) { /* This will happen if the type info is stale which is quite feasible under live migration */ - DPRINTF("FNI: [%08lx,%d] pte=%llx," - " mfn=%08lx, pfn=%08lx [mfn]=%08lx\n", - type, i, (unsigned long long)pte, mfn, - live_m2p[mfn], - (live_m2p[mfn] < max_pfn) ? - live_p2m[live_m2p[mfn]] : 0xdeadbeaf); - - pfn = 0; /* be suspicious */ + DPRINTF("PT Race: [%08lx,%d] pte=%llx, mfn=%08lx\n", + type, i, (unsigned long long)pte, mfn); + pfn = 0; /* zap it - we'll retransmit this page later */ } else pfn = live_m2p[mfn]; -- 2.30.2